home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
metkit
/
setup.exe
/
EXAMPLES
/
DISCAT
/
DISCAT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-06-08
|
1KB
|
49 lines
// Copyright (C) 1996, 1997 Meta Four Software. All rights reserved.
//
// Disk catalog sample code
//
//! rev="$Id: discat.h,v 1.3 1997/05/27 00:06:37 jcw Rel $"
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
class CMyApp : public CWinApp
{
public:
virtual BOOL InitInstance();
};
/////////////////////////////////////////////////////////////////////////////
class CMainDlgWindow : public CDialog
{
private:
public:
CMainDlgWindow();
//{{AFX_DATA(CMainDlgWindow)
enum { IDD = IDD_MAIN_DIALOG };
CEdit m_path;
CStatic m_status;
//}}AFX_DATA
//{{AFX_VIRTUAL(CMainDlgWindow)
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
protected:
//{{AFX_MSG(CMainDlgWindow)
afx_msg void OnScanBtn();
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////